home *** CD-ROM | disk | FTP | other *** search
/ Champak 146 / (Vol 146) Jan 07 2012.iso / Games / scuba.swf / scripts / DefineSprite_303 / frame_9 / DoAction.as
Encoding:
Text File  |  2012-01-07  |  521 b   |  10 lines

  1. if(0 < _root.allFishies.length)
  2. {
  3.    vToPull = Math.floor(Math.random() * Number(_root.allFishies.length));
  4.    _root.activeFishies.push(_root.allFishies[vToPull]);
  5.    setProperty(eval("_root." + _root.allFishies[vToPull]), _Y, Number(_root.TOP_BOUND) + Number(Math.random() * Number(_root.BOTTOM_BOUND - Number(_root.TOP_BOUND))));
  6.    set("_root." + _root.allFishies[vToPull] + ".status","active");
  7.    set("_root." + _root.allFishies[vToPull] + ".vAttackedDiver",false);
  8.    _root.allFishies.splice(vToPull,1);
  9. }
  10.